Method: \saffire\os.usleep()

Signature void os.usleep(numerical microseconds);

Arguments

microseconds
The number of microseconds to sleep. When <= 0, this method will return immediately.

Notes:

  • Note that this will AT LEAST sleep the amount of microseconds. There is no guarantee that the duration will be EXACTLY the amount of microseconds.

Examples:

// sleep for 5 seconds
os.usleep(5 * 1000 * 1000);